home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005 / CHIP Utilities 2005.iso / boot / menus / bootdsk.scn next >
Encoding:
Text File  |  2005-01-18  |  3.1 KB  |  57 lines

  1. #
  2. # DOS/Linux Boot Disks
  3. #
  4. bootdisk_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.2                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                             [DOS/Linux Boot Disks]                             "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. set textColor = color[yellow on cyan]
  16. print " DOS Boot Disks                                                                 "
  17. set textColor = color[white on cyan]
  18. print " [F1] FreeDOS Boot Disk V3.22           [F3] NwDsk: NetWare Boot Disk V3.22     "
  19. print " [F2] Madboot Floppy V8.0               [F4] MSRRC: Bart's N/W Disk Clone V3.22 "
  20. print "                                                                                "
  21. set textColor = color[yellow on cyan]
  22. print " Linux Boot Disks                                                               "
  23. set textColor = color[white on cyan]
  24. print " [F5] Tom's Boot Disk V2.0.103          [F7] Recovery Is Possible (RIP) V3.1    "
  25. print " [F6] BasicLinux V3.2                   [F8] Trinux V0.89                       "
  26. print "                                                                                "
  27. print "                                                                                "
  28. print "                                                                                "
  29. print "                                                                                "
  30. print "                                                                                "
  31. print "                                                                                "
  32. print "                                                                                "
  33. print "                                                                                "
  34. print "                                                                                "
  35. print "                                                                                "
  36. print "                                                                                "
  37. set textColor = color[white on blue]
  38. print "             Please select an item (ESC to return to previous menu)             "
  39. set textColor = color[white on black]
  40.  
  41. #
  42. # Actions
  43. #
  44. getkey 500 script boothdd0.scn
  45. clear
  46. if ($lastKey == key[f1]); then bcdw \images\freedos.img
  47. if ($lastKey == key[f2]); then memdisk \images\madboot.igz
  48. if ($lastKey == key[f3]); then memdisk \images\nwdsk.igz
  49. if ($lastKey == key[f4]); then memdisk \images\fdmsrrc.igz
  50. if ($lastKey == key[f5]); then memdisk \images\tomsrtbt.igz
  51. if ($lastKey == key[f6]); then memdisk \images\basiclin.igz
  52. if ($lastKey == key[f7]); then memdisk \images\rip.igz
  53. if ($lastKey == key[f8]); then memdisk \images\trinux.igz
  54. if ($lastKey == key[esc]); then script main.scn
  55. goto bootdisk_menu
  56.  
  57.